cb6669bf9e0c86c7beae8dce56738b1f621dba34,Frameworks/Core/ERExtensions/Sources/er/extensions/foundation/ERXFileUtilities.java,ERXFileUtilities,stringFromGZippedFile,#File#,538
Before Change
* @throws IOException if things go wrong
*/
public static String stringFromGZippedFile(File f) throws IOException {
return new String(bytesFromGZippedFile(f), charset());
}
/**
After Change
* @throws IOException if things go wrong
*/
public static String stringFromGZippedFile(File f) throws IOException {
return new String(bytesFromGZippedFile(f), charset().name());
}
/**